-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: update go dependencies #1329
base: main
Are you sure you want to change the base?
Conversation
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
✅ Deploy Preview for reearth-web canceled.
|
a0cf536
to
a7aae1d
Compare
a7aae1d
to
918eef0
Compare
This PR contains the following updates:
v0.3.0
->v0.4.2
v1.36.0
->v1.50.0
v0.17.43
->v0.17.63
v1.21.0
->v1.25.0
v4.0.4
->v4.6.0
v1.25.3
->v1.32.8
v1.27.7
->v1.28.10
v1.52.0
->v1.72.2
v2.3.1
->v2.16.0
v1.11.3
->v1.15.13
v1.4.0
->v1.5.1
v3.2.0
->v3.4.1
v4.11.4
->v4.13.3
v1.3.1
->v2.1.0
v1.4.0
->v1.5.0
v0.15.0
->v0.17.0
v1.39.0
->v1.47.0
v1.11.0
->v1.12.0
v1.8.4
->v1.10.0
v1.5.2
->v3.2.1
v2.5.11
->v2.5.21
v1.13.5
->v3.34.0
v1.13.1
->v2.0.0
v0.32.0
->v0.58.0
v0.32.0
->v0.58.0
v1.22.0
->v1.33.0
v1.22.0
->v1.33.0
v0.20.0
->v0.34.0
v0.16.0
->v0.25.0
v0.14.0
->v0.21.0
v0.17.0
->v0.29.0
v0.161.0
->v0.216.0
Release Notes
googleapis/google-cloud-go (cloud.google.com/go/profiler)
v0.4.0
bigquery:
-
NewGCSReference
is now a function, not a method onClient
.Table.LoaderFrom
now accepts aReaderSource
, enablingloading data into a table from a file or any
io.Reader
.Client.Table and Client.OpenTable have been removed.
Replace
with
Client.CreateTable has been removed.
Replace
with
Dataset.ListTables have been replaced with Dataset.Tables.
Replace
with
Client.Read has been replaced with Job.Read, Table.Read and Query.Read.
Replace
with
and similarly for reading from tables or queries.
The iterator returned from the Read methods is now named RowIterator. Its
behavior is closer to the other iterators in these libraries. It no longer
supports the Schema method; see the next item.
Replace
with
for {
var vals ValueList
err := it.Next(&vals)
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: use vals.
}
Instead of the
RecordsPerRequest(n)
option, writeInstead of the
StartIndex(i)
option, writeValueLoader.Load now takes a Schema in addition to a slice of Values.
Replace
with
Table.Patch is replace by Table.Update.
Replace
with
Client.Copy is replaced by separate methods for each of its four functions.
All options have been replaced by struct fields.
To load data from Google Cloud Storage into a table, use Table.LoaderFrom.
Replace
with
Instead of passing options to Copy, set fields on the Loader:
To extract data from a table into Google Cloud Storage, use
Table.ExtractorTo. Set fields on the returned Extractor instead of
passing options.
Replace
with
To copy data into a table from one or more other tables, use
Table.CopierFrom. Set fields on the returned Copier instead of passing options.
Replace
with
To start a query job, create a Query and call its Run method. Set fields
on the query instead of passing options.
Replace
with
Table.NewUploader has been renamed to Table.Uploader. Instead of options,
configure an Uploader by setting its fields.
Replace
with
pubsub: remove
pubsub.Done
. Useiterator.Done
instead, whereiterator
is the packagegoogle.golang.org/api/iterator
.99designs/gqlgen (github.com/99designs/gqlgen)
v0.17.63
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.62...v0.17.63
v0.17.62
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.61...v0.17.62
v0.17.61
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.60...v0.17.61
v0.17.60
Compare Source
What's Changed
Full Changelog: 99designs/gqlgen@v0.17.59...v0.17.60
v0.17.59
Compare Source
What's Changed
Full Changelog: 99designs/gqlgen@v0.17.58...v0.17.59
v0.17.58
Compare Source
What's Changed
//nolint
directives by @alexandear in https://github.com/99designs/gqlgen/pull/3391New Contributors
Full Changelog: 99designs/gqlgen@v0.17.57...v0.17.58
v0.17.57
Compare Source
What's Changed
worker_limit
option for server code generation by @OldBigBuddha in https://github.com/99designs/gqlgen/pull/3376New Contributors
Full Changelog: 99designs/gqlgen@v0.17.56...v0.17.57
v0.17.56
Compare Source
What's Changed
multipart/mixed
transport support for deferred queries by @giulio-opal in https://github.com/99designs/gqlgen/pull/3341incremental
deferred responses. Fix hanging behavior on last response by @giulio-opal in https://github.com/99designs/gqlgen/pull/3357